.main-footer{
    background-color: #151515;
    color: whitesmoke;
    padding: 30px 20px;
    font-size: 0.8em;
}

.footer__txt{
    color: rgb(114, 113, 113);
    border-bottom: 1px dotted rgba(114, 113, 113, 0.4);
    padding-bottom: 20px;
}

.footer__link{
    color: rgb(114, 113, 113);
    text-decoration: none;
    display: block;
    padding: 5px 0;
}

.footer__tittle{
    border-top: 1px dotted rgba(114, 113, 113, 0.4);
    padding-top: 20px;
}

.copy{
    color: #6b6767;
}

.footer__map{
    width: 350px;
    height: 200px;
}

@media screen and (min-width:1024px){
    .main-footer{
        display: grid;
        grid-template-columns: repeat(4,1fr);
        grid-gap: 20px;
        margin-top: 60px;
    }

    .copy{
        grid-column-start: span 4;
        text-align: right;
    }

    .footer__map{
        width: 800px ;
        height: 300px;
    }
}